home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_08 / 9n08010b < prev    next >
Text File  |  1991-07-08  |  181b  |  9 lines

  1. /* ceil function */
  2. #include "xmath.h"
  3.  
  4. double (ceil)(double x)
  5.         {       /* compute ceil(x) */
  6.         return (_Dint(&x, 0) < 0 && 0.0 < x ? x + 1.0 : x);
  7.         }
  8.  
  9.